home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000022_news@columbia.edu_Thu Jun 1 12:56:38 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22953
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 1 Jun 1995 08:56:45 -0400
  3. Received: by apakabar.cc.columbia.edu id AA27617
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 1 Jun 1995 08:56:42 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Automating kermit session in a shell script
  9. Date: 1 Jun 1995 12:56:38 GMT
  10. Organization: Columbia University
  11. Lines: 35
  12. Distribution: na
  13. Message-Id: <3qkde6$quu@apakabar.cc.columbia.edu>
  14. References: <3qfuqp$l9f@cuboulder.colorado.edu>
  15. Nntp-Posting-Host: watsun.cc.columbia.edu
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <3qfuqp$l9f@cuboulder.colorado.edu>,
  19. Rick Grubin <grubin@spot.Colorado.EDU> wrote:
  20. : I would like to automate a kermit session between two hosts
  21. : in a shell script (or DOS batch file, either way is acceptable).
  22. : The two computers in question are connected directly via a serial
  23. : connection (null modem cable) or via a local network.  The goal
  24. : is to have one computer (either a DOS or Unix host) connect to
  25. : a Unix computer, establish a remote kermit server, jump back to
  26. : the connect-initiating computer, send files, and then finish the
  27. : remote server on the Unix computer.
  28. : I can do this manually, with no difficulty.  I am struggling
  29. : with getting past the "login/password" sequence on the remote
  30. : Unix computer, as well as the "escape back to initiating computer"
  31. : character sequence, in both Unix shell script and DOS batch files.
  32. : Any help with automating this procedure from DOS batch files or
  33. : Unix shell scripts would be most appreciated.  Thank you in advance.
  34. This is the most common use of Kermit scripts, and it is quite
  35. straightforward.  It is explained in complete detail in either one
  36. of the manuals, "Using MS-DOS Kermit" or "Using C-Kermit", and
  37. illustrated with numerous examples.  UNIX C-Kermit even comes with
  38. scripts that log in to various kinds of systems for you.  Please
  39. purchase one of these manuals and read about script programming.
  40. It will make you into a self-sufficient script programmer, and you
  41. will be contributing to the health of the Kermit project.
  42.  
  43. Also make sure you have up to date versions of the software:
  44. MS-DOS Kermit 3.14; C-Kermit 5A(190) (for OS/2 it's 5A(191)).
  45.  
  46. About your question.  Here is a hint.  In a script program, you do
  47. not CONNECT or escape back.  Instead, you use INPUT and OUTPUT
  48. commands to "read" and "type" what you would read and type by hand.
  49.  
  50. - Frank